home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / windows / games / winjack.arj / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-10-08  |  466b  |  28 lines

  1. echo off
  2. cls
  3. if "%1" == "" GOTO error
  4. if "%2" == "" GOTO error
  5. echo %1
  6. echo %2
  7. md %1
  8. copy *.* %1
  9.  
  10. wrini %2\win.ini [extensions] ckb=kpwinrun.exe ^.ckb
  11.  
  12. GOTO done
  13.  
  14. :error
  15. echo You must specify a Directory to install WinJack and the WIN.INI Directory
  16. echo Use complete path names.
  17. echo .
  18. echo INSTALL {winjack_dir} {windows_dir}
  19. echo .
  20. echo .
  21. echo example:        INSTALL c:\winjack c:\windows
  22. GOTO exit
  23.  
  24. :done
  25. echo .
  26. echo WinJack Installed
  27.  
  28. :exit